home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / LPC / do-while < prev    next >
Text File  |  2001-04-06  |  364b  |  16 lines

  1. NAME
  2.         do-while
  3.  
  4. SYNTAX
  5.         do { statement } while(expr);
  6.  
  7. DESCRIPTION
  8.         Execute 'statment' until 'expr' evaulates to 0.
  9.  
  10.         A 'break' in the 'statement' will terminate the loop. A
  11.         'continue' will continue the execution from the beginning of
  12.         the loop.
  13.  
  14. SEE ALSO
  15.         for(LPC), foreach(LPC), while(LPC), if(LPC), switch(LPC)
  16.